import * as React from 'react';
import { useBreakpointValue } from '@aws-amplify/ui-react';
import { useRouter } from 'next/router';
import {
A11ySection,
AmplifySection,
AuthenticationSection,
CompatibleSection,
FigmaSection,
LiveSection,
PrimitiveSection,
ThemingSection,
} from '@/components/home/sections';
const ReactHomePage = ({ colorMode }) => {
const {
query: { platform = 'react' },
} = useRouter();
const showEditor = useBreakpointValue({
base: false,
large: true,
});
return (
<>
{showEditor ? : null}
>
);
};
export default ReactHomePage;